Security News
New Python Packaging Proposal Aims to Solve Phantom Dependency Problem with SBOMs
PEP 770 proposes adding SBOM support to Python packages to improve transparency and catch hidden non-Python dependencies that security tools often miss.
@types/react-is
Advanced tools
The @types/react-is package provides TypeScript type definitions for the react-is library, which is a collection of utilities to determine the type of React elements. This is particularly useful for type-checking in TypeScript projects when working with dynamic React elements or when needing to assert the type of components or elements in the code.
Identifying React Elements
This feature allows you to check if a value is a React element. The code sample demonstrates how to use the `isElement` function to determine if a given value is a React element.
import * as ReactIs from 'react-is';
function isElement(element: any): boolean {
return ReactIs.isElement(element);
}
Checking for Specific Element Types
These functions enable checking if a React element is a Fragment or a Portal, respectively. This is useful for conditional rendering or logic that depends on the type of component.
import * as ReactIs from 'react-is';
function isFragment(value: any): boolean {
return ReactIs.isFragment(value);
}
function isPortal(value: any): boolean {
return ReactIs.isPortal(value);
}
Identifying Context Consumers and Providers
This feature allows for the identification of Context Consumers and Providers, which can be useful in complex applications that make heavy use of React's Context API for managing state.
import * as ReactIs from 'react-is';
function isContextConsumer(value: any): boolean {
return ReactIs.isContextConsumer(value);
}
function isContextProvider(value: any): boolean {
return ReactIs.isContextProvider(value);
}
While not a direct alternative, prop-types offers runtime type checking for React props and similar objects. Unlike @types/react-is, which is used for TypeScript type definitions, prop-types is used within JavaScript to ensure components receive props of the correct type.
npm install --save @types/react-is
This package contains type definitions for react-is (https://reactjs.org/).
Files were exported from https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/react-is/v17.
// NOTE: Users of the React 18 alpha should add a reference
// to 'react-is/next' in their project. See next.d.ts's top comment
// for reference and documentation on how exactly to do it.
export as namespace ReactIs;
import { ElementType, LazyExoticComponent, MemoExoticComponent, ReactElement } from "react";
export function typeOf(value: any): symbol | undefined;
export function isValidElementType(value: any): value is ElementType;
export function isAsyncMode(value: any): value is ReactElement;
export function isContextConsumer(value: any): value is ReactElement;
export function isContextProvider(value: any): value is ReactElement;
export function isElement(value: any): value is ReactElement;
export function isForwardRef(value: any): value is ReactElement;
export function isFragment(value: any): value is ReactElement;
export function isLazy(value: any): value is LazyExoticComponent<any>;
export function isMemo(value: any): value is MemoExoticComponent<any>;
export function isProfiler(value: any): value is ReactElement;
export function isPortal(value: any): value is ReactElement;
export function isStrictMode(value: any): value is ReactElement;
export function isSuspense(value: any): value is ReactElement;
export const AsyncMode: symbol;
export const ContextConsumer: symbol;
export const ContextProvider: symbol;
export const Element: symbol;
export const ForwardRef: symbol;
export const Fragment: symbol;
export const Lazy: symbol;
export const Memo: symbol;
export const Portal: symbol;
export const Profiler: symbol;
export const StrictMode: symbol;
export const Suspense: symbol;
These definitions were written by Avi Vahl, Christian Chown, and Sebastian Silbermann.
FAQs
TypeScript definitions for react-is
The npm package @types/react-is receives a total of 580,800 weekly downloads. As such, @types/react-is popularity was classified as popular.
We found that @types/react-is demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
PEP 770 proposes adding SBOM support to Python packages to improve transparency and catch hidden non-Python dependencies that security tools often miss.
Security News
Socket CEO Feross Aboukhadijeh discusses open source security challenges, including zero-day attacks and supply chain risks, on the Cyber Security Council podcast.
Security News
Research
Socket researchers uncover how threat actors weaponize Out-of-Band Application Security Testing (OAST) techniques across the npm, PyPI, and RubyGems ecosystems to exfiltrate sensitive data.